Concept

This version ignores the initial clustering, instead using the bam file from the alignment of all data to the mixed human/mouse reference genomes. For each fastq read identifier, the better alignment score is stored for either genome. The script then iterates through the paired fastq file, partitioning the reads to separate fastq pairs.
These are then run though cellranger count using only the appropriate genomes.

Load human genome split of samples, labeling with hs1..hs4. Output matrix.
Convert to common mouse genes. Re-load into object. Load mouse genome split of samples, labeling with ms1..ms4. Subset overlapping genes. Merge all 8. Normalize and scale. Show clusters labeled by cell; split by sample. Show nCount_RNA also. Determine significantly-different list mouse vs human.

hs1.data=Read10X(data.dir="./hg19/S1/outs/filtered_feature_bc_matrix/")
hs2.data=Read10X(data.dir="./hg19/S2/outs/filtered_feature_bc_matrix/")
hs3.data=Read10X(data.dir="./hg19/S3/outs/filtered_feature_bc_matrix/")
hs4.data=Read10X(data.dir="./hg19/S4/outs/filtered_feature_bc_matrix/")
ms1.data=Read10X(data.dir="./mm10/S1/outs/filtered_feature_bc_matrix/")
ms2.data=Read10X(data.dir="./mm10/S2/outs/filtered_feature_bc_matrix/")
ms3.data=Read10X(data.dir="./mm10/S3/outs/filtered_feature_bc_matrix/")
ms4.data=Read10X(data.dir="./mm10/S4/outs/filtered_feature_bc_matrix/")

#some human gene symbols have underscores (but these are not in geneTrans).
#Substitute a dot so as not to raise an error.
rownames(hs1.data)=gsub("_",".",rownames(hs1.data))
rownames(hs2.data)=gsub("_",".",rownames(hs2.data))
rownames(hs3.data)=gsub("_",".",rownames(hs3.data))
rownames(hs4.data)=gsub("_",".",rownames(hs4.data))

#rename cells
colnames(x=hs1.data) <- paste('hs1',colnames(x=hs1.data),sep="_")
colnames(x=hs2.data) <- paste('hs2',colnames(x=hs2.data),sep="_")
colnames(x=hs3.data) <- paste('hs3',colnames(x=hs3.data),sep="_")
colnames(x=hs4.data) <- paste('hs4',colnames(x=hs4.data),sep="_")
colnames(x=ms1.data) <- paste('ms1',colnames(x=ms1.data),sep="_")
colnames(x=ms2.data) <- paste('ms2',colnames(x=ms2.data),sep="_")
colnames(x=ms3.data) <- paste('ms3',colnames(x=ms3.data),sep="_")
colnames(x=ms4.data) <- paste('ms4',colnames(x=ms4.data),sep="_")

#create objects
hs1=CreateSeuratObject(counts=hs1.data,project="MG",min.cells=5)
hs2=CreateSeuratObject(counts=hs2.data,project="MG",min.cells=5)
hs3=CreateSeuratObject(counts=hs3.data,project="MG",min.cells=5)
hs4=CreateSeuratObject(counts=hs4.data,project="MG",min.cells=5)
ms1=CreateSeuratObject(counts=ms1.data,project="MG",min.cells=5)
ms2=CreateSeuratObject(counts=ms2.data,project="MG",min.cells=5)
ms3=CreateSeuratObject(counts=ms3.data,project="MG",min.cells=5)
ms4=CreateSeuratObject(counts=ms4.data,project="MG",min.cells=5)

#Follow https://satijalab.org/seurat/essential_commands.html 
hg=merge(x=hs1,y=c(hs2,hs3,hs4),project="Hg")
mg=merge(x=ms1,y=c(ms2,ms3,ms4),project="Mg")

#at this point we don't need all the original sample objects--can re-create if needed
rm(hs1,hs2,hs3,hs4,hs1.data,hs2.data,hs3.data,hs4.data)
rm(ms1,ms2,ms3,ms4,ms1.data,ms2.data,ms3.data,ms4.data)

#summary of each object
print(hg)
## An object of class Seurat 
## 11055 features across 3354 samples within 1 assay 
## Active assay: RNA (11055 features)
print(mg)
## An object of class Seurat 
## 17255 features across 28237 samples within 1 assay 
## Active assay: RNA (17255 features)

Convert human genes to mouse

Output raw data to data frame. Use conversion table (geneTrans) to translate human symbols to mouse symbols.

#load gene translation table
geneTrans=read.table("geneTrans.txt",sep=",",header=T,stringsAsFactors = F,row.names = 1)

mito.m=grep("^mt",rownames(mg),value=T)
mito.h=grep("^MT-",rownames(hg),value=T)
#turns out, these two vectors (n=13 each) are ordered and match, build an extended translation table
mitoTrans=data.frame(row.names = paste("mm10",mito.m,sep="_"),
                     Human.Symbol = mito.h,
                     Homologene_ID = rep(NA,13),
                     None = rep("yes",13),
                     Mouse.Symbol = mito.m,
                     hg19 = paste("hg19",mito.h,sep="_"),
                     mm10 = paste("mm10",mito.m,sep="_")
                     )

#extended translation table
xTrans = rbind(geneTrans,mitoTrans)

#extract human raw counts into table
hg.raw=GetAssayData(hg,slot="counts")

#subset rows in geneTrans (not necessary but simpler)
hg.raw=hg.raw[row.names(hg.raw) %in% xTrans$Human.Symbol,]  #cut from 13283 to 11364 rows

#translate human symbols to mouse
hg.trans=merge(x=hg.raw,y=xTrans[,c(1,4)],by.x=0,by.y="Human.Symbol",all.x=T)
rownames(hg.trans)=hg.trans$Mouse.Symbol
hg.trans=hg.trans[,!(names(hg.trans) %in% c("Row.names","Mouse.Symbol"))]

#extract mouse raw counts
mg.raw=GetAssayData(mg,slot="counts")

#subset rows in xTrans only
mg.raw=mg.raw[row.names(mg.raw) %in% xTrans$Mouse.Symbol,]

#convert both matrices back into Seurat objects
hm=CreateSeuratObject(hg.trans,project="MG",min.cells=5)
mg=CreateSeuratObject(mg.raw,project="MG",min.cells=5)

print(hm)
## An object of class Seurat 
## 9337 features across 3354 samples within 1 assay 
## Active assay: RNA (9337 features)
print(mg)
## An object of class Seurat 
## 14523 features across 28237 samples within 1 assay 
## Active assay: RNA (14523 features)

Merge objects

hm=merge(x=hm,y=mg,project="HM")

#clean up objects no longer needed
rm(hg,mg,hg.raw,mito.m,mito.h)

#summarize merged object
print(hm)
## An object of class Seurat 
## 14745 features across 31591 samples within 1 assay 
## Active assay: RNA (14745 features)

Scale and normalize

Use standard workflow to calculate percent.mito (now all mouse symbols) and visualize by sample.

#filter and normalize merged object
mito.features=grep(pattern="^mt",x=rownames(x=hm),value=T)

percent.mito=Matrix::colSums(x=GetAssayData(object=hm,slot="counts")[mito.features,]) / Matrix::colSums(x=GetAssayData(object=hm,slot='counts'))
hm[['percent.mito']] = percent.mito

Diagnostic plots.

VlnPlot(object=hm,features=c("nFeature_RNA","nCount_RNA","percent.mito"),ncol=3)

FeatureScatter(object=hm,feature1 = "nCount_RNA",feature2 = "percent.mito")

FeatureScatter(object=hm,feature1 = "nCount_RNA",feature2 = "nFeature_RNA")

Scale

Print summary data before and after subsetting. Then normalize, find variable genes, and scale.

print(hm)
## An object of class Seurat 
## 14745 features across 31591 samples within 1 assay 
## Active assay: RNA (14745 features)
hm=subset(hm,nFeature_RNA > 200 & nFeature_RNA < 2500 & percent.mito < 0.05) #try > 100 & < 2500 & < .5
print(hm)
## An object of class Seurat 
## 14745 features across 9305 samples within 1 assay 
## Active assay: RNA (14745 features)
hm=NormalizeData(hm,normalization.method = "LogNormalize",scale.factor=1e4)
hm=FindVariableFeatures(hm,selection.method = 'mean.var.plot',mean.cutoff = c(0.0125,3),dispersion.cutoff = c(0.5,Inf)) #finds 4047 features
length(VariableFeatures(hm))
## [1] 2368
hm=ScaleData(hm,features=rownames(hm),vars.to.regress = c("nCount_RNA","percent.mito"))  #this takes a while
## Regressing out nCount_RNA, percent.mito
## Scaling data matrix

Dimension reduction

Start with PCA and determine how many dimensions are informative.

hm=RunPCA(hm,features=VariableFeatures(hm),verbose=T)
## PC_ 1 
## Positive:  C1qb, Cd74, C1qc, C1qa, Rpl13a, Spp1, Lst1, Cybb, Cx3cr1, Apoc1 
##     Sat1, H2-Ea-ps, C3, Gpr34, Fos, Fcer1g, Alox5ap, Fcgr4, Trem2, Ptprc 
##     P2ry13, A2m, Cd84, Maf, Csf1r, Csf3r, Adora3, H2-T23, H2-DMb1, Olfml3 
## Negative:  Ptn, Tsc22d1, Meg3, Spock2, Mt3, Meis2, Atp1a2, Igfbp7, Flt1, Pcp4l1 
##     Cldn5, Itm2a, Id1, Ahi1, Igf1r, Epas1, Cpe, R3hdm1, Gng11, Il1rapl1 
##     Fry, Nrxn3, Ramp2, Snap25, Mt2, Epha5, Slc1a2, Sorbs2, Syt1, Ablim1 
## PC_ 2 
## Positive:  Meis2, Meg3, Il1rapl1, Atp1b1, Nrxn3, Syt1, Epha5, Grin2b, Celf4, Ahi1 
##     Scg5, Negr1, Stmn3, Snap25, Rtn1, Ndrg4, Snhg11, Plppr4, Arpp21, Mt3 
##     Bex2, Ank3, Peg3, Nap1l5, Opcml, Synpr, Gad1, Pcsk2, Eml5, Aplp1 
## Negative:  Flt1, Cldn5, Itm2a, Igfbp7, Ptprb, Id1, Abcb1a, Pglyrp1, Klf2, Egfl7 
##     Cxcl12, Adgrf5, Slc2a1, Fn1, Ramp2, Ablim1, Adgrl4, Sox18, Sgms1, Ahnak 
##     Jcad, Spock2, Esam, Abcg2, Epas1, Pecam1, Ly6e, Pltp, Crip1, Kitl 
## PC_ 3 
## Positive:  Syt1, Meg3, Snap25, Ndrg4, Celf4, Snhg11, Gad1, Stmn3, Grin2b, Synpr 
##     Nrxn3, Camk2b, Plppr4, Atp1a3, Tpm1, Tmsb10, Ano3, Eml5, Pcsk2, Bcl11a 
##     Pcp4, Epha5, C1qtnf4, Ccsap, Nrip3, Snca, Caly, Gad2, Gria3, Myt1l 
## Negative:  Atp1a2, Aldoc, Slc1a2, Mfge8, Mt2, Ctsd, Id4, Hexb, Mt3, Rorb 
##     Ptn, Gjb6, Fxyd1, Slc7a10, Fyb, Rnase4, Pla2g7, Trf, Aqp4, Ctss 
##     Car2, Ctsz, Slc6a11, Msmo1, Lgmn, Vsir, Hes5, Dbi, Cd52, Phkg1 
## PC_ 4 
## Positive:  Hexb, Ctss, Fyb, Ctsd, Rnase4, Tmem119, Vsir, Selplg, Lgmn, Fcgr3 
##     Cx3cr1, C1qa, C1qc, Csf1r, Cd52, Mafb, Ly6e, Ctsz, P2ry12, C1qb 
##     Fcer1g, Tgfbr1, Unc93b1, Ptpn18, Pou2f2, Ssh2, Arsb, Ctsh, Ly86, Rhoh 
## Negative:  Atp1a2, Ptn, Aldoc, Dbi, Slc1a2, Neat1, Mt2, Mfge8, Id4, Spp1 
##     Car2, Rorb, Fxyd1, Cd74, Mt3, Gjb6, H2-Ea-ps, Cryab, Hes5, Slc7a10 
##     Apoc1, Aqp4, C3, Slc6a11, Msmo1, Cybb, A2m, Tpm1, Fjx1, Sfxn5 
## PC_ 5 
## Positive:  Cldn11, Ermn, Tspan2, Mog, Tubb4a, Ugt8a, Mag, Tmem88b, Mal, Opalin 
##     Cnp, Nkx6-2, Ppp1r14a, Stmn4, Mobp, Kctd13, Qdpr, Grb14, Gjc3, Cryab 
##     Ttll7, Hapln2, Anln, Enpp2, Kcna1, Trf, Edil3, Dixdc1, Ndrg1, Sept4 
## Negative:  Atp1a2, Aldoc, Slc1a2, Mt3, Mt2, Mfge8, Id4, Cpe, Rorb, Gjb6 
##     Slc7a10, Pla2g7, Fxyd1, Aqp4, Slc6a11, Fjx1, Hes5, Mlc1, Phkg1, Etnppl 
##     Sfxn5, Itih3, Mgst1, Dkk3, Pdgfrb, Slc7a11, Msmo1, Igfbp2, Hes1, Fabp7
print(hm[['pca']],dims=1:5,nfeatures=5,projected=F)
## PC_ 1 
## Positive:  C1qb, Cd74, C1qc, C1qa, Rpl13a 
## Negative:  Ptn, Tsc22d1, Meg3, Spock2, Mt3 
## PC_ 2 
## Positive:  Meis2, Meg3, Il1rapl1, Atp1b1, Nrxn3 
## Negative:  Flt1, Cldn5, Itm2a, Igfbp7, Ptprb 
## PC_ 3 
## Positive:  Syt1, Meg3, Snap25, Ndrg4, Celf4 
## Negative:  Atp1a2, Aldoc, Slc1a2, Mfge8, Mt2 
## PC_ 4 
## Positive:  Hexb, Ctss, Fyb, Ctsd, Rnase4 
## Negative:  Atp1a2, Ptn, Aldoc, Dbi, Slc1a2 
## PC_ 5 
## Positive:  Cldn11, Ermn, Tspan2, Mog, Tubb4a 
## Negative:  Atp1a2, Aldoc, Slc1a2, Mt3, Mt2
VizDimLoadings(hm,dims=1:2)

DimPlot(hm)

hm=ProjectDim(hm)
## PC_ 1 
## Positive:  Tyrobp, C1qb, B2m, Cd74, Aif1, C1qc, C1qa, Rpl13a, Spp1, Lst1 
##     Cybb, Cx3cr1, Ftl1, Apoc1, Laptm5, Uba52, Rpl29, Sat1, H2-Ea-ps, C3 
## Negative:  Ptn, Gria2, Zbtb20, Tcf4, Selenow, Mt1, Sptbn1, Tsc22d1, Xist, mt-Atp6 
##     Sparcl1, Calm1, Nfib, Rsrp1, Bsg, Meg3, Atp5j, Pbx1, Selenok, Dclk1 
## PC_ 2 
## Positive:  Gria2, Ckb, Meis2, Meg3, Dclk1, Ank2, Pcsk1n, Il1rapl1, Atp1b1, Nrxn1 
##     Nrxn3, Syt1, Epha5, Dlgap1, Cadm2, Celf2, Grin2b, Celf4, Syt11, Ahi1 
## Negative:  Flt1, Cldn5, Itm2a, Igfbp7, Ptprb, Id1, Abcb1a, Pglyrp1, Klf2, Egfl7 
##     Cxcl12, Adgrf5, Slc2a1, Fn1, Ramp2, Ablim1, Bsg, Adgrl4, Sox18, Sgms1 
## PC_ 3 
## Positive:  Syt1, Meg3, Snap25, Ndrg4, Celf4, Snhg11, Gad1, Stmn3, Grin2b, Synpr 
##     Nrxn3, Camk2b, Plppr4, Atp1a3, Tpm1, Tmsb10, Ano3, Eml5, Pcsk2, Bcl11a 
## Negative:  Cst3, Apoe, Atp1a2, Gja1, Aldoc, Plpp3, Slc1a2, Cd81, Tsc22d4, Prdx6 
##     Glul, Mt1, Slc1a3, Ntsr2, Selenop, Mfge8, Clu, Arhgap5, Mt2, Ctsd 
## PC_ 4 
## Positive:  Hexb, Ctss, Fyb, Ctsd, Rnase4, Tmem119, Vsir, Selplg, Lgmn, Fcgr3 
##     Cx3cr1, C1qa, C1qc, Csf1r, Cd52, Rpl17, Serinc3, Mafb, Ly6e, Ctsz 
## Negative:  Atp1a2, Plpp3, Ptn, Htra1, Gja1, Prdx6, Gpm6b, Aldoc, Ptprz1, Prnp 
##     Dbi, Gpr37l1, Slc1a3, Slc1a2, Ntsr2, Neat1, Mt2, Mfge8, Sparcl1, Clu 
## PC_ 5 
## Positive:  Cldn11, Ermn, Tspan2, Mog, Tubb4a, Ugt8a, Mag, Plp1, Tmem88b, Mal 
##     Opalin, Cnp, Nkx6-2, Ppp1r14a, Stmn4, Mobp, Kctd13, Qdpr, Grb14, Gjc3 
## Negative:  Atp1a2, Gja1, Aldoc, Slc1a2, Mt3, Mt2, Sparcl1, Ntsr2, Clu, Plpp3 
##     Atp1b2, Slc1a3, Mfge8, Id4, Prdx6, S1pr1, Sox9, Cxcl14, Ntm, Dclk1
DimHeatmap(hm,dims=1,cells=500,balanced=T)

DimHeatmap(hm,dims=1:6,cells=500,balanced=T)

hm=JackStraw(hm,num.replicate=100)
hm=ScoreJackStraw(hm,dims=1:20)
JackStrawPlot(hm,dims=1:20)
## Warning: Removed 33160 rows containing missing values (geom_point).

ElbowPlot(hm)

Start clustering

#start clustering
hm=FindNeighbors(hm,dims=1:13) #adjust dims based on plots
## Computing nearest neighbor graph
## Computing SNN
hm=FindClusters(hm,resolution=0.2)
## Modularity Optimizer version 1.3.0 by Ludo Waltman and Nees Jan van Eck
## 
## Number of nodes: 9305
## Number of edges: 321126
## 
## Running Louvain algorithm...
## Maximum modularity in 10 random starts: 0.9677
## Number of communities: 12
## Elapsed time: 1 seconds
table(Idents(hm))
## 
##    0    1    2    3    4    5    6    7    8    9   10   11 
## 2183 1757 1561 1056  988  477  472  216  216  202  133   44

Find tSNE projection and add to object

hm=RunTSNE(hm,dims=1:13)
DimPlot(hm,reduction='tsne')

DimPlot(hm,reduction='tsne',split.by='orig.ident')

FeaturePlot(hm,features='Spp1')

FeaturePlot(hm,features='Hexb')

FeaturePlot(hm,features='nCount_RNA')

UMAP

hm=RunUMAP(hm,dims = 1:13)
DimPlot(hm,reduction='umap')

FeaturePlot(hm,features='Spp1')

FeaturePlot(hm,features='Hexb')

#FeaturePlot(hm,features='nCount_RNA',split.by='orig.ident')
FeaturePlot(hm,features='nCount_RNA')

Label clusters

Use top 2 genes from prior clustering to do this, following

hm.markers=FindAllMarkers(hm,only.pos=T,min.pct = .25,logfc.threshold = .25)
## Calculating cluster 0
## Calculating cluster 1
## Calculating cluster 2
## Calculating cluster 3
## Calculating cluster 4
## Calculating cluster 5
## Calculating cluster 6
## Calculating cluster 7
## Calculating cluster 8
## Calculating cluster 9
## Calculating cluster 10
## Calculating cluster 11
hm.markers %>% group_by(cluster) %>% top_n(10,avg_logFC)
## # A tibble: 120 x 7
## # Groups:   cluster [12]
##    p_val avg_logFC pct.1 pct.2 p_val_adj cluster gene  
##    <dbl>     <dbl> <dbl> <dbl>     <dbl> <fct>   <chr> 
##  1     0      2.78 0.984 0.208         0 0       Slc1a2
##  2     0      2.56 0.946 0.13          0 0       Aldoc 
##  3     0      2.45 0.972 0.24          0 0       Mt2   
##  4     0      2.42 0.985 0.286         0 0       Mt3   
##  5     0      2.41 0.937 0.121         0 0       Plpp3 
##  6     0      2.39 0.935 0.092         0 0       Gja1  
##  7     0      2.37 0.886 0.103         0 0       Clu   
##  8     0      2.31 0.85  0.068         0 0       Ntsr2 
##  9     0      2.31 0.994 0.504         0 0       Mt1   
## 10     0      2.21 0.974 0.278         0 0       Slc1a3
## # … with 110 more rows

Save top 5 list

hm.markers %>% group_by(cluster) %>% top_n(5,avg_logFC) %>% write.csv("BS Top 5 per cluster.csv",row.names = F)
hm.markers %>% group_by(cluster) %>% top_n(5,avg_logFC) %>% as.data.frame %>% paged_table

Identify human and mouse microglial clusters

Use Spp1 and Hexb to identify cluster number for human and mouse microglia, respectively.

humClus=as.character(subset(hm.markers,gene=="Spp1")$cluster)
print(humClus)
## [1] "1"  "10"
musClus=as.character(subset(hm.markers,gene=="Hexb")$cluster)
print(musClus)
## [1] "2"  "11"

Find genes differentially expressed between human and mouse microglia

diffGenes=FindMarkers(hm,ident.1=humClus,ident.2=musClus,min.pct=0.1)

Display summary of differentially expressed genes

table(sig=diffGenes$p_val_adj <= 0.05, twofold=abs(diffGenes$avg_logFC) >= 1)
##        twofold
## sig     FALSE TRUE
##   FALSE    64    0
##   TRUE   1242  177
diffGenes %>% tibble::rownames_to_column() %>% filter(p_val_adj <= 0.05) %>% filter(abs(avg_logFC) >= 1) %>% paged_table

Save differential expressed list as object (for later use in R) and csv (as text to preserve gene names)

saveRDS(diffGenes,"by_score_diffGenes.rds")
write.table(as.data.frame(diffGenes),"BS_diffGenes_csv.txt",sep=",",quote=T)

Cluster Averages

hm.mean=AverageExpression(hm)
## Finished averaging RNA for cluster 0
## Finished averaging RNA for cluster 1
## Finished averaging RNA for cluster 2
## Finished averaging RNA for cluster 3
## Finished averaging RNA for cluster 4
## Finished averaging RNA for cluster 5
## Finished averaging RNA for cluster 6
## Finished averaging RNA for cluster 7
## Finished averaging RNA for cluster 8
## Finished averaging RNA for cluster 9
## Finished averaging RNA for cluster 10
## Finished averaging RNA for cluster 11
head(hm.mean$RNA)
##                0          1           2           3          4          5
## A1bg  0.00000000 0.61759829 0.000000000 0.000000000 0.00000000 0.00000000
## A2m   0.07370446 5.61339824 0.005233837 0.003072582 0.02087588 0.01141850
## Aaas  0.02680657 0.11195657 0.052265532 0.090663581 0.01873249 0.04764485
## Aacs  0.20318327 0.04216130 0.048558018 0.052323552 0.04172430 0.05221440
## Aagab 0.09887252 0.05900636 0.286865370 0.120242846 0.10467665 0.09486977
## Aak1  0.56516145 2.09924068 0.305218896 0.502329925 1.38806652 0.77230128
##                6          7          8          9         10         11
## A1bg  0.00000000 0.00000000 0.00000000 0.00000000 0.00000000 0.00000000
## A2m   0.03271121 0.00000000 0.00000000 0.03386112 0.44480084 0.06810690
## Aaas  0.09528216 0.15866399 0.02542356 0.03989118 0.09905821 0.08968932
## Aacs  0.04782246 0.01665934 0.00000000 0.13336243 0.01701085 0.00000000
## Aagab 0.11737610 0.06597034 0.02767573 0.05089111 0.17898925 0.00000000
## Aak1  0.30246447 0.59451839 0.41731372 0.73960921 0.40587173 0.68477663
write.csv(hm.mean$RNA,"BS_hm_cluster_averages_csv.txt")

Show species by original split

#stash idents 
hm[["old.ident"]]=Idents(hm)
#get vector of cell idents
all.cells=Cells(hm)
#split by species
hg.cells=grep("^h",all.cells,value=T)
mm.cells=grep("^m",all.cells,value=T)
#apply new idents
Idents(hm,cells=hg.cells)="Human"
Idents(hm,cells=mm.cells)="Mouse"
table(hm$orig.ident,Idents(hm))
##      
##       Mouse Human
##   hs1     0   434
##   hs2     0   317
##   hs3     0   592
##   hs4     0   384
##   ms1  1661     0
##   ms2   727     0
##   ms3  3275     0
##   ms4  1915     0

Plot tsne labeled by species no legend

DimPlot(hm,label=T,repel=T,label.size=8,reduction = "tsne")+NoLegend()

Plot nCounts in tsne labeled by species

FeaturePlot(hm,features='nCount_RNA',reduction = "tsne")

FeaturePlot(hm,features='nCount_RNA',reduction = "tsne",split.by="ident")

Check overlapping cells

Distribution of detected transcripts

To test the level of detection in each cell, we’ll display the distribution of counted transcripts per cells.

#replace counts > 0 with T/F
hg.nz=as.data.frame(hg.trans) > 0
mg.nz=as.data.frame(mg.raw) > 0

#sum the TRUE values for each column (cell)
mg.nz=apply(mg.nz,MARGIN=2,FUN=sum)
hg.nz=apply(hg.nz,MARGIN=2,FUN=sum)

#check distributions
plot(density(log10(hg.nz)))
lines(density(log10(mg.nz)),lty="dashed")

Venn

Finally, we’ll check whether any cell identifiers (sample_barcode) are found in common across the two species.

#Venn
#extract only sample_barcodes with more than 500 genes > 0
hg.x=names(which(hg.nz > 500))
mg.x=names(which(mg.nz > 500))


#strip off species code from sample index and assemble into list
#diffList=list(hg19=sapply(strsplit(hg.x,"_"),`[`,2),mm10=sapply(strsplit(mg.x,"_"),`[`,2))
diffList=list(hg19=unique(sub("h","",hg.x)),mm10=unique(sub("m","",mg.x)))
#generate object
venn.plot=venn.diagram(diffList,filename=NULL,euler.d=T,scaled=T,col='transparent',
                       alpha=.5,fill=c("cornflowerblue","coral2"),
                       fontfamily='Helvetica',cat.fontfamily='Helvetica',cat.cex=3,cex=2)
png("BS Venn Overlap.png",width=1200,height=900)
grid.draw(venn.plot) #save to file
dev.off()
## png 
##   2
grid.newpage()
#plot it in output
grid.draw(venn.plot)

Session Info

sessionInfo()
## R version 3.5.3 (2019-03-11)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 18.04.2 LTS
## 
## Matrix products: default
## BLAS: /usr/lib/x86_64-linux-gnu/atlas/libblas.so.3.10.3
## LAPACK: /usr/lib/x86_64-linux-gnu/atlas/liblapack.so.3.10.3
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8    
##  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
##  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
##  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
## 
## attached base packages:
## [1] grid      stats     graphics  grDevices utils     datasets  methods  
## [8] base     
## 
## other attached packages:
## [1] VennDiagram_1.6.20  futile.logger_1.4.3 rmarkdown_1.12     
## [4] dplyr_0.8.0.1       Seurat_3.0.0.9000  
## 
## loaded via a namespace (and not attached):
##  [1] nlme_3.1-137         tsne_0.1-3           bitops_1.0-6        
##  [4] RColorBrewer_1.1-2   httr_1.4.0           tools_3.5.3         
##  [7] utf8_1.1.4           R6_2.4.0             irlba_2.3.3         
## [10] KernSmooth_2.23-15   lazyeval_0.2.2       colorspace_1.4-1    
## [13] withr_2.1.2          npsurv_0.4-0         tidyselect_0.2.5    
## [16] compiler_3.5.3       cli_1.1.0            formatR_1.6         
## [19] plotly_4.9.0         labeling_0.3         caTools_1.17.1.2    
## [22] scales_1.0.0         lmtest_0.9-36        ggridges_0.5.1      
## [25] pbapply_1.4-0        stringr_1.4.0        digest_0.6.18       
## [28] R.utils_2.8.0        pkgconfig_2.0.2      htmltools_0.3.6     
## [31] bibtex_0.4.2         htmlwidgets_1.3      rlang_0.3.4         
## [34] zoo_1.8-5            jsonlite_1.6         ica_1.0-2           
## [37] gtools_3.8.1         R.oo_1.22.0          magrittr_1.5        
## [40] Matrix_1.2-17        fansi_0.4.0          Rcpp_1.0.1          
## [43] munsell_0.5.0        ape_5.3              reticulate_1.12     
## [46] R.methodsS3_1.7.1    stringi_1.4.3        yaml_2.2.0          
## [49] gbRd_0.4-11          MASS_7.3-51.1        gplots_3.0.1.1      
## [52] Rtsne_0.15           plyr_1.8.4           parallel_3.5.3      
## [55] gdata_2.18.0         listenv_0.7.0        ggrepel_0.8.0       
## [58] crayon_1.3.4         lattice_0.20-38      cowplot_0.9.4       
## [61] splines_3.5.3        SDMTools_1.1-221     knitr_1.22          
## [64] pillar_1.3.1         igraph_1.2.4         future.apply_1.2.0  
## [67] codetools_0.2-16     futile.options_1.0.1 glue_1.3.1          
## [70] evaluate_0.13        lsei_1.2-0           metap_1.1           
## [73] lambda.r_1.2.3       data.table_1.12.2    png_0.1-7           
## [76] Rdpack_0.11-0        gtable_0.3.0         RANN_2.6.1          
## [79] purrr_0.3.2          tidyr_0.8.3          future_1.12.0       
## [82] assertthat_0.2.1     ggplot2_3.1.1        xfun_0.6            
## [85] rsvd_1.0.0           survival_2.43-3      viridisLite_0.3.0   
## [88] tibble_2.1.1         cluster_2.0.8        globals_0.12.4      
## [91] fitdistrplus_1.0-14  ROCR_1.0-7